.product-detail {
    padding-top: 60px;
    padding-bottom: 60px;
}

.product-img-slider img {
    width: 100%;
}

.vertical-thumbnails {
    max-height: 420px;
    overflow-y: auto;
    /* Estilos de scroll para Firefox */
    scrollbar-color: #5f5fce #e0e0e0;
    /* thumb color | track color */
    scrollbar-width: thin;
}

/* Transición a scroll horizontal en pantallas pequeñas */
@media (max-width: 576px) {
    .vertical-thumbnails {
        max-height: none;
        overflow-y: hidden;
        overflow-x: auto;
        white-space: nowrap;
        display: flex;
        align-items: center;
        margin-bottom: 24px;
    }

    /* Ajusta márgenes para las imágenes en horizontal */
    .vertical-thumbnails img {
        margin-bottom: 0;
        margin-right: 10px;
        width: 80px;
        height: auto;
    }
}

.vertical-thumbnails img {
    cursor: pointer;
    margin-bottom: 10px;
    transition: transform 0.2s;
}

.vertical-thumbnails img:hover {
    transform: scale(1.05);
}

/* Estilos de scroll para navegadores basados en WebKit (Chrome, Safari, Edge nuevo, etc.) */
.vertical-thumbnails::-webkit-scrollbar {
    width: 8px;
    /* Ancho de la barra */
}

.vertical-thumbnails::-webkit-scrollbar-track {
    background: #e0e0e0;
    /* Color del “raíl” */
    border-radius: 4px;
    /* Bordes redondeados opcionales */
}

.vertical-thumbnails::-webkit-scrollbar-thumb {
    background-color: #f0ad4e;
    /* Color de la barra de desplazamiento */
    border-radius: 4px;
    border: 1px solid #e0e0e0;
    /* Borde opcional */
}

.vertical-thumbnails::-webkit-scrollbar-thumb:hover {
    background-color: #ec8e22;
    /* Color al pasar el ratón (hover) */
}

.product-info h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    position: relative;
}

/* Estilo para el "efecto shape" bajo el título (opcional) */
.product-info h1 span {
    position: relative;
}

.product-info h1 span::before {
    content: "";
    background-image: url("../image/h-1-bn-shape-2.png");
    width: 116px;
    height: 21px;
    position: absolute;
    background-size: 119px;
    top: 38px;
}

.price-section .original-price {
    font-size: 1.2rem;
    text-decoration: line-through;
    color: #888;
    margin-right: 10px;
}

.price-section .discount-price {
    font-size: 2rem;
    color: #f0ad4e;
    /* Rojo */
    font-weight: bold;
}

.product-info .category {
    font-size: 1rem;
    margin-bottom: 15px;
}

.short-description {
    margin-bottom: 20px;
}

.product-purchase-options {
    margin-top: 20px;
}

.product-tabs {
    padding-top: 30px;
    padding-bottom: 30px;
}

.quantity {
    border: 1px #dcd3d3 solid;
    height: 50px;
    padding: 10px;
    display: flex;
    width: 50%;
    border-radius: 15px;
}

.plusminus {
    height: 100%;
    width: 30%;
    background: white;
    border: none;
    font-size: 40px;
    color: #5f5fce;
}

.numerical {
    height: 100%;
    width: 100%;
    border: none;
    font-size: 30px;
    text-align: center;
}

.numerical:focus {
    outline: none;
}

/* Ocultamos el input radio */
.size-radio {
    display: none;
}

/* Estilo básico del label como cuadro */
.size-radio+label {
    display: inline-block;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    border: 1px solid #ccc;
    border-radius: 4px;
    margin-right: 5px;
    cursor: pointer;
    user-select: none;
    background-color: #f8f9fa;
}

/* Efecto al pasar el mouse (opcional) */
.size-radio+label:hover {
    background-color: #e2e6ea;
}

/* Estilo cuando el radio está seleccionado */
.size-radio:checked+label {
    background-color: #f0ad4e;
    color: #fff;
    border-color: #f0ad4e;
}